home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / html / vendors / htmedical / demos / RemoveIt2.csh < prev   
Linux/UNIX/POSIX Shell Script  |  1997-07-08  |  340b  |  27 lines

  1. #!/bin/sh
  2.  
  3. echo "Remove T-Vox 1.0 Hot Mix Demo (y/n)? \c"
  4. read a
  5. test $a = 'y'
  6. if [ $? -ne 0 ]
  7. then
  8.     exit
  9. fi
  10.  
  11.  
  12. echo " "
  13. echo "Removing T-Vox 1.0 Hot Mix Demo."
  14. echo "Please wait, this will take a few minutes..."
  15. echo " "
  16.  
  17. versions remove HotMixTVox
  18.  
  19.  
  20. echo " "
  21. echo "Done!"
  22. echo " "
  23. echo "Press Enter to exit this window...  \c"
  24. read a
  25.  
  26.  
  27.